home *** CD-ROM | disk | FTP | other *** search
/ AMP Graphics Collection / AMP Graphics Collection.iso / programs / author / zlaunchw / zlaunch.dir / 00001_Script_1 next >
Text File  |  1997-05-19  |  316b  |  16 lines

  1. on mouseUp
  2.   global gMacPlatform, gOptionDown
  3.   
  4.   -- Store the state of the Option key
  5.   set gOptionDown = the optionDown
  6.   
  7.   
  8.   -- Launch using the parameterList specified dynamically
  9.   if gMacPlatform then
  10.     go frame "LaunchMacParams"
  11.     
  12.   else
  13.     go frame "LaunchWinParams"
  14.     
  15.   end if
  16. end